revert 7.5 modification 21/291621/1
authorEunhye Choi <eunhae1.choi@samsung.com>
Wed, 19 Apr 2023 08:20:19 +0000 (17:20 +0900)
committerEunhye Choi <eunhae1.choi@samsung.com>
Wed, 19 Apr 2023 08:20:22 +0000 (17:20 +0900)
- revert 134c2963c21e4b38875aae8b5333ff46b5afb27f
  which is applied tizen 7.5 only

Change-Id: I511342930128121288a1e6afcf30b95430b84e4e

test/esplusplayer_test.c

index 38400a4..2dc3dd9 100644 (file)
@@ -583,8 +583,6 @@ static void __test_set_audio_stream_info()
        int channels = 0;
        int rate = 0;
        int bit = 0;
-       void *codec_data = NULL;
-       unsigned int codec_data_length = 0;
        media_packet_h audbuf;
        esplusplayer_audio_stream_info audio_info = {0, };
 
@@ -620,6 +618,9 @@ static void __test_set_audio_stream_info()
        if (ret != MEDIADEMUXER_ERROR_NONE) {
                g_print("Error (%d) return of (Audio) mediademuxer_read_sample()\n", ret);
        } else {
+               void *codec_data = NULL;
+               unsigned int codec_data_length = 0;
+
                g_test_h->streams[AUDIO_STREAM].pending_packet = audbuf;
                if (media_packet_get_codec_data (audbuf, &codec_data, &codec_data_length) == MEDIA_PACKET_ERROR_NONE) {
                        g_print("Audio has codec data\n");
@@ -639,9 +640,6 @@ static void __test_set_audio_stream_info()
        else
                g_print("                       => esplusplayer_set_audio_stream_info() success\n");
 
-       if (codec_data)
-               free(codec_data);
-
        g_test_h->streams[AUDIO_STREAM].activate = true;
 }
 
@@ -653,8 +651,6 @@ static void __test_set_video_stream_info()
        int width = 0;
        int height = 0;
        int framerate = 0;
-       void *codec_data = NULL;
-       unsigned int codec_data_length = 0;
        media_packet_h vidbuf;
 
        esplusplayer_video_stream_info video_info = {0, };
@@ -697,6 +693,9 @@ static void __test_set_video_stream_info()
        if (ret != MEDIADEMUXER_ERROR_NONE) {
                g_print("Error (%d) return of (Video) mediademuxer_read_sample()\n", ret);
        } else {
+               void *codec_data = NULL;
+               unsigned int codec_data_length = 0;
+
                g_test_h->streams[VIDEO_STREAM].pending_packet = vidbuf;
                if (media_packet_get_codec_data (vidbuf, &codec_data, &codec_data_length) == MEDIA_PACKET_ERROR_NONE) {
                        g_print("Video has codec data\n");
@@ -716,9 +715,6 @@ static void __test_set_video_stream_info()
        else
                g_print("                       => esplusplayer_set_video_stream_info() success\n");
 
-       if (codec_data)
-               free(codec_data);
-
        g_test_h->streams[VIDEO_STREAM].activate = true;
 }