mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
Speedup in mpg123 parsing. speedup in mp1videoparse. rearanged the
Original commit message from CVS: Speedup in mpg123 parsing. speedup in mp1videoparse. rearanged the MPEG player got rid of some memcpy. bit handling changes. MMX code for the IDCT and motion compensation in mpeg_play. Almost as fast as the commercial mpeg player mtv, but with a much better video quality :-)
This commit is contained in:
parent
2810e739f6
commit
a45625d478
2 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,6 @@ GstBuffer *gst_buffer_create_sub(GstBuffer *parent,guint32 offset,guint32 size)
|
||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void gst_buffer_destroy(GstBuffer *buffer) {
|
void gst_buffer_destroy(GstBuffer *buffer) {
|
||||||
GSList *metas;
|
GSList *metas;
|
||||||
|
|
||||||
|
|
|
@ -70,6 +70,7 @@ void new_pad_created(GstElement *parse,GstPad *pad,GstElement *pipeline) {
|
||||||
g_return_if_fail(decode_video != NULL);
|
g_return_if_fail(decode_video != NULL);
|
||||||
show = gst_elementfactory_make("videosink","show");
|
show = gst_elementfactory_make("videosink","show");
|
||||||
g_return_if_fail(show != NULL);
|
g_return_if_fail(show != NULL);
|
||||||
|
//gtk_object_set(GTK_OBJECT(show),"scale",2.0,NULL);
|
||||||
|
|
||||||
appwindow = gnome_app_new("MPEG1 player","MPEG1 player");
|
appwindow = gnome_app_new("MPEG1 player","MPEG1 player");
|
||||||
gnome_app_set_contents(GNOME_APP(appwindow),
|
gnome_app_set_contents(GNOME_APP(appwindow),
|
||||||
|
|
Loading…
Reference in a new issue