summaryrefslogtreecommitdiffstats
path: root/decoder
diff options
context:
space:
mode:
authorHarish Mahendrakar <harish.mahendrakar@ittiam.com>2015-04-20 15:33:05 +0530
committerLajos Molnar <lajos@google.com>2015-05-05 17:51:53 +0000
commit7497191460a9504f8b4f64df169ab633f0b74353 (patch)
tree216431d3e98141f6dcf4ac957e4e2f98e34d077c /decoder
parenta2b49e5f0574dee76f81507f288143d83a4b7c1a (diff)
downloadandroid_external_libavc-7497191460a9504f8b4f64df169ab633f0b74353.tar.gz
android_external_libavc-7497191460a9504f8b4f64df169ab633f0b74353.tar.bz2
android_external_libavc-7497191460a9504f8b4f64df169ab633f0b74353.zip
Resolved warnings and fixed alignment of few assemblies
Resolved warnings seen in x86 modules Fixed alignment of few modules Updated comments in few arm modules for consistency Fixed warnings seen in clang build Change-Id: I0623169b5e84a6a6f09c3d2212e754101272f5e9
Diffstat (limited to 'decoder')
-rw-r--r--decoder/ih264d_thread_parse_decode.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/decoder/ih264d_thread_parse_decode.c b/decoder/ih264d_thread_parse_decode.c
index be3cb01..1c9eb68 100644
--- a/decoder/ih264d_thread_parse_decode.c
+++ b/decoder/ih264d_thread_parse_decode.c
@@ -582,13 +582,9 @@ WORD32 ih264d_decode_slice_thread(dec_struct_t *ps_dec /* Decoder parameters */
void ih264d_decode_picture_thread(dec_struct_t *ps_dec )
{
- volatile WORD32 i4_err_status;
-
ithread_set_name("ih264d_decode_picture_thread");
-
-
// run the loop till all slices are decoded
while(1)
@@ -644,13 +640,6 @@ void ih264d_decode_picture_thread(dec_struct_t *ps_dec )
DEBUG_THREADS_PRINTF("Waiting for next slice or end of frame\n");
NOP(32);
- if(i4_err_status != 0)
- {
- /*In the case of error set decode Mb number ,so that the
- parse thread does not wait because of mb difference being
- greated the 32*/
- ps_dec->cur_dec_mb_num = ps_dec->u2_cur_mb_addr - 1;
- }
}
DEBUG_THREADS_PRINTF("Got next slice/end of frame signal \n ");